home *** CD-ROM | disk | FTP | other *** search
/ Video Toaster 4.3 / Video Toaster v4.3.iso / 3.1 / toasterall / arexx_examples / tpaint / blur.rexx next >
OS/2 REXX Batch file  |  1992-09-15  |  436b  |  18 lines

  1. /* Blur.rexx -- Blur Pic */
  2. /* © 1992 Arnie Cachelin */
  3.  
  4. if pos('DigiPaint',show(ports))=0 then do
  5.   say "Can't find ToasterPaint!"
  6.   exit
  7. end
  8.  
  9. Address "DigiPaint"     /* Tell ARexx where commands go  */
  10.  
  11. 'Blu2'          /* Heavy Blur Mode */
  12. 'Hvof'          /* Set to radial gradient off */
  13. 'Maxe'          /* Set Edge transparency to 100% */
  14. 'Whsc'          /* Fill Whole Screen */
  15. 'Shco'          /* Render to composite out */
  16. exit
  17.  
  18.